'Declaration
Public Function Iterate( _ ByVal incrementor As Func(Of T,T) _ ) As IEnumerable(Of T)
public IEnumerable<T> Iterate( Func<T,T> incrementor )
Parameters
- incrementor
- A function which takes a value, and returns the next value.
Return Value
The items in the range.